Skip to main content

Verify a user's email

GET /api/v1/users/:userId/verify/:token/email/public

Description

Verify a user's email address (public).

Headers:

  • Content-Type: application/json
  • ApiKey: The platform api key is required to use this endpoint - {{platformApiKey}}

URL: /api/v1/users/:userId/verify/:token/email/public

  • Path Parameters:
    • userId (Required): User ID
    • token (Required): Email verification token

Response: The response is "OK" with a code of 200.

/api/v1/users/:userId/verify/:token/email/public

Response: 200

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/users/:userId/verify/:token/email/public \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!